home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-05 | 691 b | 35 lines | [TEXT/PJMM] |
- { This file has been processed by The THINK Pascal Source Converter, v1.1. }
-
- {}
- {Created: Sunday, January 6, 1991 at 10:48 PM}
- { Menus.p}
- { Pascal Interface to the Macintosh Libraries}
- {}
- { Copyright Apple Computer, Inc. 1985-1990}
- { All rights reserved}
- {}
-
-
-
- { RMS 4/3/91 Modified to exclude declarations already in the THINK Pascal built-in interfaces }
-
-
-
- unit Menus;
- interface
- uses
- Types, Quickdraw;
-
- type
- MenuCRsrcPtr = ^MenuCRsrc;
- MenuCRsrcHandle = ^MenuCRsrcPtr;
- MenuCRsrc = record
- numEntries: INTEGER; {number of entries}
- mcEntryRecs: MCTable; {ARRAY [1..numEntries] of MCEntry}
- end;
-
-
- implementation
- end.
-
-